home *** CD-ROM | disk | FTP | other *** search
/ Alde ADA 5 #1 / ADA CD-ROM - Alde Publishing.iso / cm / ed.sid < prev    next >
Encoding:
Text File  |  1988-05-03  |  4.5 KB  |  95 lines

  1. --= SID = SIMTEL20 Ada Software Repository Item Description File = SID =--
  2. -- UNIT NAME         : EDITOR (ALED - Ada Line Editor)
  3. -- VERSION           : 1.1
  4. -- REVIEW CODE       : 
  5. -- DDN ADDRESS       : RCONN at SIMTEL20
  6. -- AUTHOR            : Richard Conn
  7. --                   : Texas Instruments
  8. --                   : PO Box 801, MS 8007
  9. --                   : McKinney, TX  75069
  10. -- COPYRIGHT         : (c) 1984 Richard Conn
  11. -- DATE CREATED      : 9 Nov 84
  12. -- DATE RELEASED     : 5 Dec 84
  13. -- DATE LAST UPDATED : 15 Feb 85
  14. -- LOCATION          : ASR
  15. -- ENVIRONMENT       : DG MV 10000, ROLM ADE
  16. --= CLASSIFICATION       ===============================================--
  17. -- CATEGORY LEVEL 1  : TEXT MANIPULATION
  18. -- CATEGORY LEVEL 2  : EDITORS
  19. -- CATEGORY LEVEL 3  : Editor 1
  20. -- CATEGORY LEVEL 4  : 
  21. -- KEYWORD           : EDITOR
  22. -- KEYWORD           : LINE-ORIENTED EDITOR
  23. -- KEYWORD           : INPUT-LINE EDITOR
  24. -- INDEX             : Editor
  25. -- INDEX             : Line-Oriented Editor
  26. -- INDEX             : Editor, Line-Oriented
  27. -- INDEX             : Input-Line Editor
  28. -- INDEX             : Editor, Input-Line
  29. -- TAXONOMY          : 
  30. -- DEPENDENCIES      : 
  31. -- SEE ALSO          : 
  32. --= FILE LISTING         ===============================================--
  33. -- FILE SPECS        : PD:<ADA.CAIS-TOOLS>ED*.*
  34. -- DIRECTORY DISPLAY :
  35. -- Directory   PD:<ADA.EDITORS>
  36. --      File Name     Byte Count  Line Count
  37. --   ---------------  ----------  ----------
  38. --   ED.CMM                 3859         113
  39. --   ED.DOC                47972        1584
  40. --   ED.PRO                 7045         129
  41. --   ED.SRC                69604        1928
  42. --   ===============  ==========  ==========
  43. --     4 Files            128480        3754
  44. --= ABSTRACT             ===============================================--
  45. --         ALED is designed to edit text files.   Upon  invocation,  ALED
  46. -- prompts  the  user  for a file name.  If the file exists, its contents
  47. -- (lines) are read in and prepared for editing; if  the  file  does  not
  48. -- exist,  the  file  is  created  and  the  empty buffer is prepared for
  49. -- editing.   ALED  is  an  interactive  editor,   accepting   singlechar
  50. -- commands,  filling  in a command prompt (for more info as needed), and
  51. -- performing its functions in realtime  while  the  user  watches.   The
  52. -- functions provided include (but are not limited to) the following:
  53. -- 
  54. --      * List Lines
  55. --      * Insert a Group of Lines into the Edit Buffer
  56. --      * Delete Lines
  57. --      * String Search and String Substitution
  58. --      * Movement Within the Edit Buffer
  59. --      * Reading in a File After a Specified Line
  60. --      * Writing out a Range of Lines to a File
  61. --      * Built-in, online Documentation (Summary)
  62. --
  63. --     Only TEXT_IO is used for support, so I believe that the editor
  64. -- is transportable between a a wide variety of environments; I
  65. -- encountered a number of "surprises" when I programmed the editor, and
  66. -- I don't know if they were caused by the ROLM ADE implementation of
  67. -- TEXT_IO or if they were intentional; see the documentation.
  68. --= REVISION HISTORY     ===============================================--
  69. --
  70. -- DATE         VERSION AUTHOR                  HISTORY
  71. -- 12/5/84        1.0   Richard Conn            Initial Release
  72. -- 2/15/85        1.1   Richard Conn            Fixed file name string bug;
  73. --                                              removed TLINE.ADA test pgm
  74. --= RELEASE NOTICE       ===============================================--
  75. -- This prologue must be included in all copies of this software.
  76. -- 
  77. -- This software is copyright by the author.
  78. -- 
  79. -- This software is released to the Ada community.
  80. -- This software is released to the Public Domain (note:
  81. --   software released to the Public Domain is not subject
  82. --   to copyright protection).
  83. -- Restrictions on use or distribution:  NONE
  84. --= DISCLAIMER           ===============================================--
  85. --     This software and its documentation are provided "AS IS" and
  86. -- without any expressed or implied warranties whatsoever.  No warranties
  87. -- as to performance, merchantability, or fitness for a particular
  88. -- purpose exist.
  89. --     The user is advised to test the software thoroughly before
  90. -- relying on it.  The user must assume the entire risk and liability of
  91. -- using this software.  In no event shall any person or organization of
  92. -- people be held responsible for any direct, indirect, consequential or
  93. -- inconsequential damages or lost profits.
  94. --======================================================================--
  95.